Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
eventemitter3
Advanced tools
EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface.
The eventemitter3 package is a high-performance event emitter library that provides an interface for emitting and listening to events. It is a drop-in replacement for existing EventEmitter implementations with a focus on performance.
Emitting events
This feature allows you to emit events with a specified name and pass arguments to the event listeners.
const EventEmitter = require('eventemitter3');
const emitter = new EventEmitter();
emitter.on('greet', function(message) {
console.log(message);
});
emitter.emit('greet', 'Hello World!');
Listening to events
This feature allows you to add a listener for a specific type of event. The listener will be invoked when an event with that name is emitted.
const EventEmitter = require('eventemitter3');
const emitter = new EventEmitter();
emitter.on('greet', function(message) {
console.log(message);
});
Removing event listeners
This feature allows you to remove a specific listener from an event so that it no longer gets called when the event is emitted.
const EventEmitter = require('eventemitter3');
const emitter = new EventEmitter();
function onGreet(message) {
console.log(message);
}
emitter.on('greet', onGreet);
emitter.removeListener('greet', onGreet);
Once listeners
This feature allows you to add a one-time listener for an event. The listener will be invoked only the first time the event is emitted, after which it is removed.
const EventEmitter = require('eventemitter3');
const emitter = new EventEmitter();
emitter.once('greet', function(message) {
console.log('This will only be logged once:', message);
});
emitter.emit('greet', 'Hello World!');
emitter.emit('greet', 'Hello again!');
The 'events' package is Node.js's native event emitter implementation. It is very similar to eventemitter3 but may not be as optimized for performance.
Mitt is a tiny functional event emitter / pubsub. It offers the same core functionality as eventemitter3 but with a smaller footprint and a functional API.
Wolfy87's EventEmitter is an implementation of the EventEmitter module found in Node.js but can be used in the browser. It is larger in size compared to eventemitter3 and includes additional features like namespaces and wildcard listeners.
EventEmitter3 is a high performance EventEmitter. It has been micro-optimized for various of code paths making this, one of, if not the fastest EventEmitter available for Node.js and browsers. The module is API compatible with the EventEmitter that ships by default with Node.js but there are some slight differences:
throw
an error when you emit an error
event and nobody is
listening.newListener
event is removed as the use-cases for this functionality are
really just edge cases.setMaxListeners
and it's pointless memory leak warnings. If you want to
add end
listeners you should be able to do that without modules complaining.listenerCount
function. Use EE.listeners(event).length
instead.fn.bind
.listeners
method can do existence checking instead of returning only arrays.It's a drop in replacement for existing EventEmitters, but just faster. Free performance, who wouldn't want that? The EventEmitter is written in EcmaScript 3 so it will work in the oldest browsers and node versions that you need to support.
$ npm install --save eventemitter3 # npm
$ component install primus/eventemitter3 # Component
$ bower install eventemitter3 # Bower
After installation the only thing you need to do is require the module:
var EventEmitter = require('eventemitter3');
And you're ready to create your own EventEmitter instances. For the API documentation, please follow the official Node.js documentation:
http://nodejs.org/api/events.html
We've upgraded the API of the EventEmitter.on
, EventEmitter.once
and
EventEmitter.removeListener
to accept an extra argument which is the context
or this
value that should be set for the emitted events. This means you no
longer have the overhead of an event that required fn.bind
in order to get a
custom this
value.
var EE = new EventEmitter()
, context = { foo: 'bar' };
function emitted() {
console.log(this === context); // true
}
EE.once('event-name', emitted, context);
EE.on('another-event', emitted, context);
EE.removeListener('another-event', emitted, context);
To check if there is already a listener for a given event you can supply the
listeners
method with an extra boolean argument. This will transform the
output from an array, to a boolean value which indicates if there are listeners
in place for the given event:
var EE = new EventEmitter();
EE.once('event-name', function () {});
EE.on('another-event', function () {});
EE.listeners('event-name', true); // returns true
EE.listeners('unknown-name', true); // returns false
FAQs
EventEmitter3 focuses on performance while maintaining a Node.js AND browser compatible interface.
The npm package eventemitter3 receives a total of 16,347,801 weekly downloads. As such, eventemitter3 popularity was classified as popular.
We found that eventemitter3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.